* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: #f9f9f9;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}
.btn-primary {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  color: white;
  border: none;
}
.btn-primary:hover {
  box-shadow: 0 8px 15px rgba(52, 152, 219, 0.3);
  transform: translateY(-3px);
}
.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}
.btn-outline:hover {
  background: white;
  color: #3498db;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 12px;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.section-header h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #3498db;
}
.section-header p {
  color: #777;
  max-width: 600px;
  margin: 0 auto;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#preloader .loader {
  position: relative;
  width: 200px;
  height: 200px;
}
#preloader .loader .plane {
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #3498db;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M482.3 192C516.5 192 576 221 576 256C576 292 516.5 320 482.3 320H365.7L265.2 495.9C259.5 505.8 248.9 512 237.4 512H181.2C170.6 512 162.9 501.8 165.8 491.6L214.9 320H112L68.8 377.6C65.78 381.6 61.04 384 56 384H14.03C6.284 384 0 377.7 0 369.1C0 368.7 .1818 367.4 .5398 366.1L32 256L.5398 145.9C.1818 144.6 0 143.3 0 142C0 134.3 6.284 128 14.03 128H56C61.04 128 65.78 130.4 68.8 134.4L112 192H214.9L165.8 20.4C162.9 10.17 170.6 0 181.2 0H237.4C248.9 0 259.5 6.153 265.2 16.12L365.7 192H482.3z"/></svg>');
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path d="M482.3 192C516.5 192 576 221 576 256C576 292 516.5 320 482.3 320H365.7L265.2 495.9C259.5 505.8 248.9 512 237.4 512H181.2C170.6 512 162.9 501.8 165.8 491.6L214.9 320H112L68.8 377.6C65.78 381.6 61.04 384 56 384H14.03C6.284 384 0 377.7 0 369.1C0 368.7 .1818 367.4 .5398 366.1L32 256L.5398 145.9C.1818 144.6 0 143.3 0 142C0 134.3 6.284 128 14.03 128H56C61.04 128 65.78 130.4 68.8 134.4L112 192H214.9L165.8 20.4C162.9 10.17 170.6 0 181.2 0H237.4C248.9 0 259.5 6.153 265.2 16.12L365.7 192H482.3z"/></svg>');
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  animation: plane-movement 3s infinite ease-in-out;
}

@keyframes plane-movement {
  0% {
    left: -100px;
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
  100% {
    left: 100%;
    transform: translateY(0) rotate(0deg);
  }
}
#header {
  background: transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
  z-index: 100;
}
#header.sticky {
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
#header .navbar {
  padding: 0;
}
#header .navbar .navbar-brand {
  font-weight: 700;
  font-size: 28px;
  color: white;
}
#header .navbar .navbar-brand .logo-text {
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#header .navbar .navbar-nav .nav-item {
  margin: 0 10px;
}
#header .navbar .navbar-nav .nav-item .nav-link {
  color: white;
  font-weight: 500;
  padding: 8px 15px;
  position: relative;
}
#header .navbar .navbar-nav .nav-item .nav-link:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 0;
  height: 2px;
  background: #3498db;
  transition: all 0.3s ease;
}
#header .navbar .navbar-nav .nav-item .nav-link:hover,
#header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #3498db;
}
#header .navbar .navbar-nav .nav-item .nav-link:hover:before,
#header .navbar .navbar-nav .nav-item .nav-link.active:before {
  width: calc(100% - 30px);
}
#header .navbar .navbar-nav .nav-item .book-now {
  background: #3498db;
  color: white;
  border-radius: 50px;
  padding: 8px 20px;
}
#header .navbar .navbar-nav .nav-item .book-now:hover {
  background: #217dbb;
  transform: translateY(-3px);
}

.hero {
  height: 100vh;
  background: url('/images/hero.jpg') no-repeat center center/cover;
  position: relative;
  color: white;
  overflow: hidden;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.7);
}
.hero .content {
  position: relative;
  z-index: 1;
}
.hero .content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero .content h1 span {
  color: #3498db;
}
.hero .content p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
}
.hero .content .hero-btns .btn {
  margin-right: 15px;
}
.hero .floating-cards {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.hero .floating-cards .card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  width: 200px;
  display: flex;
  align-items: center;
  color: white;
}
.hero .floating-cards .card i {
  font-size: 24px;
  margin-right: 15px;
  color: #3498db;
}
.hero .floating-cards .card span {
  font-weight: 500;
}
.hero .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.hero .wave svg {
  width: 100%;
  height: 150px;
}
.hero .wave svg path {
  fill: white;
}

.services .service-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.services .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.services .service-card .icon-box {
  width: 80px;
  height: 80px;
  background: rgba(52, 152, 219, 0.1);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services .service-card .icon-box i {
  font-size: 36px;
  color: #3498db;
}
.services .service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}
.services .service-card p {
  color: #777;
  font-size: 14px;
  line-height: 1.7;
}

.booking {
  position: relative;
  background: url('https://images.unsplash.com/photo-1530521954074-e64f6810b32d?q=80&w=2000')
    no-repeat center center;
  background-size: cover;
  overflow: hidden;
  color: #fff;
}
.booking::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(26, 26, 46, 0.7);
  z-index: 0;
}
.booking::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.05);
  z-index: 0;
}
.booking::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.05);
  z-index: 0;
}
.booking .booking-content {
  padding: 30px 20px;
  z-index: 1;
  position: relative;
}
.booking .booking-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a2e;
  position: relative;
}
.booking .booking-content h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #3498db, #75b9e7);
  border-radius: 2px;
}
.booking .booking-content p {
  color: #555;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.booking .booking-content .stats-row {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.booking .booking-content .stats-row .stat-box {
  text-align: center;
  padding: 15px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  width: 30%;
}
.booking .booking-content .stats-row .stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
.booking .booking-content .stats-row .stat-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #3498db;
  margin-bottom: 5px;
}
.booking .booking-content .stats-row .stat-box p {
  color: #666;
  margin: 0;
  font-size: 14px;
}
.booking .booking-form {
  background: white;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.booking .booking-form .form-header {
  background: linear-gradient(45deg, #3498db, #75b9e7);
  padding: 25px;
  position: relative;
  overflow: hidden;
}
.booking .booking-form .form-header::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E")
    center center;
  opacity: 0.2;
}
.booking .booking-form .form-header h3 {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.booking .booking-form form {
  padding: 30px;
}
.booking .booking-form form .form-group {
  margin-bottom: 20px;
}
.booking .booking-form form .form-group label {
  display: flex;
  align-items: center;
  color: #555;
  margin-bottom: 8px;
  font-weight: 500;
}
.booking .booking-form form .form-group label i {
  color: #3498db;
  margin-right: 8px;
  font-size: 16px;
}
.booking .booking-form form .form-group .form-control {
  height: auto;
  padding: 12px 15px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f9f9f9;
  transition: all 0.3s;
}
.booking .booking-form form .form-group .form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  background-color: white;
}
.booking .booking-form form .form-group .form-control::-moz-placeholder {
  color: #aaa;
}
.booking .booking-form form .form-group .form-control::placeholder {
  color: #aaa;
}
.booking .booking-form form .form-group .form-control[type='date'] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.booking .booking-form form .form-group .form-select {
  height: auto;
  padding: 12px 15px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  font-size: 15px;
  background-color: #f9f9f9;
  transition: all 0.3s;
}
.booking .booking-form form .form-group .form-select:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  background-color: white;
}
.booking .booking-form form .btn-primary.btn-block {
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  background: linear-gradient(45deg, #3498db, #5faee3);
  border: none;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking .booking-form form .btn-primary.btn-block span {
  z-index: 1;
}
.booking .booking-form form .btn-primary.btn-block i {
  z-index: 1;
  transition: transform 0.3s;
}
.booking .booking-form form .btn-primary.btn-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(45deg, #5faee3, #3498db);
  transition: width 0.5s ease;
  z-index: 0;
}
.booking .booking-form form .btn-primary.btn-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}
.booking .booking-form form .btn-primary.btn-block:hover::before {
  width: 100%;
}
.booking .booking-form form .btn-primary.btn-block:hover i {
  transform: scale(1.2);
}
.booking .booking-form form .btn-primary.btn-block:active {
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .booking .booking-content {
    margin-bottom: 40px;
  }
  .booking .booking-content h2 {
    font-size: 32px;
  }
  .booking .booking-content .stats-row .stat-box h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .booking .booking-content h2 {
    font-size: 28px;
  }
  .booking .booking-content .stats-row {
    flex-wrap: wrap;
  }
  .booking .booking-content .stats-row .stat-box {
    width: 48%;
    margin-bottom: 15px;
  }
  .booking .booking-content .stats-row .stat-box:last-child {
    width: 100%;
  }
  .booking .booking-form form .row {
    margin-bottom: 0;
  }
  .booking .booking-form form .form-group {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .booking .booking-content .stats-row .stat-box {
    width: 100%;
  }
  .booking .booking-form .form-header {
    padding: 20px;
  }
  .booking .booking-form .form-header h3 {
    font-size: 20px;
  }
  .booking .booking-form form {
    padding: 20px;
  }
}
.destinations .destination-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.destinations .destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.destinations .destination-card .destination-img {
  height: 250px;
  position: relative;
  overflow: hidden;
}
.destinations .destination-card .destination-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 1s ease;
}
.destinations .destination-card .destination-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}
.destinations .destination-card .destination-img:hover img {
  transform: scale(1.1);
}
.destinations .destination-card .destination-img:hover .overlay {
  opacity: 1;
}
.destinations .destination-card .destination-content {
  padding: 20px;
  background: white;
}
.destinations .destination-card .destination-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.destinations .destination-card .destination-content .rating {
  margin-bottom: 12px;
  color: #ffc107;
  font-size: 14px;
}
.destinations .destination-card .destination-content p {
  color: #777;
  font-size: 14px;
  line-height: 1.6;
}

.destinations {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa, #eaeaea);
}
.destinations .destinations-subtitle {
  font-size: 28px;
  margin-top: 60px;
  margin-bottom: 25px;
  font-weight: 600;
  background: linear-gradient(45deg, #5e60ce, #64dfdf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.destinations .featured-destinations {
  margin-bottom: 40px;
}
.destinations .featured-destinations .destination-featured {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  height: 400px;
}
.destinations .featured-destinations .destination-featured .destination-img {
  height: 100%;
  width: 100%;
  position: relative;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .destination-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #5e60ce, #64dfdf);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  padding: 30px;
  color: white;
  transition: all 0.3s ease;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content {
  transform: translateY(13px);
  opacity: 0.8;
  transition: all 0.4s ease;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content
  h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content
  .rating {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content
  .rating
  i {
  color: #ffdf00;
  margin-right: 3px;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content
  .rating
  span {
  font-size: 14px;
  opacity: 0.8;
  margin-left: 8px;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content
  p {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content
  .btn-outline {
  border: 2px solid white;
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content
  .btn-outline:hover {
  background: white;
  color: #333;
}
.destinations
  .featured-destinations
  .destination-featured
  .destination-img
  .overlay
  .overlay-content
  .btn-outline.btn-glow:hover {
  box-shadow: 0 0 15px rgba(100, 223, 223, 0.6);
}
.destinations
  .featured-destinations
  .destination-featured:hover
  .destination-img
  img {
  transform: scale(1.05);
}
.destinations
  .featured-destinations
  .destination-featured:hover
  .destination-img
  .overlay-content {
  transform: translateY(0);
  opacity: 1;
}
.destinations .destination-card.futuristic {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: all 0.4s;
  margin-bottom: 30px;
}
.destinations .destination-card.futuristic .card-glass-effect {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: -1;
  border-radius: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
.destinations .destination-card.futuristic .destination-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.destinations .destination-card.futuristic .destination-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.destinations .destination-card.futuristic .destination-img .destination-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 12px 15px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}
.destinations
  .destination-card.futuristic
  .destination-img
  .destination-meta
  span {
  color: white;
  font-size: 13px;
  font-weight: 600;
}
.destinations
  .destination-card.futuristic
  .destination-img
  .destination-meta
  span.price {
  background: linear-gradient(45deg, #5e60ce, #64dfdf);
  padding: 4px 12px;
  border-radius: 50px;
}
.destinations
  .destination-card.futuristic
  .destination-img
  .destination-meta
  span.duration {
  display: flex;
  align-items: center;
}
.destinations
  .destination-card.futuristic
  .destination-img
  .destination-meta
  span.duration
  i {
  margin-right: 5px;
}
.destinations .destination-card.futuristic .destination-content {
  padding: 20px;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .destination-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .destination-header
  h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .destination-header
  .rating {
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .destination-header
  .rating
  i {
  color: #ffdf00;
  margin-right: 5px;
  font-size: 12px;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .destination-header
  .rating
  span {
  font-size: 13px;
  font-weight: 600;
}
.destinations .destination-card.futuristic .destination-content p {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .destination-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .destination-features
  span {
  font-size: 12px;
  color: #555;
  background: #f8f9fa;
  padding: 4px 10px;
  border-radius: 50px;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .destination-features
  span
  i {
  margin-right: 5px;
  color: #5e60ce;
}
.destinations .destination-card.futuristic .destination-content .btn-explore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5e60ce;
  font-weight: 600;
  transition: all 0.3s;
  font-size: 15px;
}
.destinations .destination-card.futuristic .destination-content .btn-explore i {
  transition: transform 0.3s;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .btn-explore:hover {
  color: #64dfdf;
}
.destinations
  .destination-card.futuristic
  .destination-content
  .btn-explore:hover
  i {
  transform: translateX(5px);
}
.destinations .destination-card.futuristic:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
.destinations .destination-card.futuristic:hover .destination-img img {
  transform: scale(1.1);
}
.destinations .btn-primary.btn-glow {
  background: linear-gradient(45deg, #5e60ce, #64dfdf);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
}
.destinations .btn-primary.btn-glow:hover {
  box-shadow: 0 0 15px rgba(100, 223, 223, 0.6);
  transform: translateY(-3px);
}
.destinations .btn-primary.btn-glow span {
  margin-right: 5px;
}

.testimonials {
  background: #f9f9f9;
}
.testimonials .testimonial-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.testimonials .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}
.testimonials .testimonial-card .testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid #3498db;
}
.testimonials .testimonial-card .testimonial-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.testimonials .testimonial-card .rating {
  color: #ffc107;
  margin-bottom: 15px;
  font-size: 14px;
}
.testimonials .testimonial-card p {
  font-style: italic;
  color: #555;
  margin-bottom: 20px;
}
.testimonials .testimonial-card .client-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
}
.testimonials .testimonial-card .client-info span {
  color: #777;
  font-size: 14px;
}

.newsletter {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  padding: 80px 0;
  color: white;
}
.newsletter .newsletter-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}
.newsletter .newsletter-content p {
  margin-bottom: 0;
  opacity: 0.9;
}
.newsletter .newsletter-form {
  display: flex;
}
.newsletter .newsletter-form .form-control {
  flex: 1;
  height: 50px;
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 0 25px;
  font-size: 14px;
}
.newsletter .newsletter-form .form-control:focus {
  outline: none;
}
.newsletter .newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 0 30px;
  background: #1a1a2e;
  color: white;
  font-weight: 600;
}
.newsletter .newsletter-form .btn:hover {
  background: #11111e;
}

.contact {
  position: relative;
  background-color: #f9f9f9;
}
.contact .section-header {
  margin-bottom: 50px;
}
.contact .contact-info {
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: white;
  height: 100%;
}
.contact .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}
.contact .contact-info .contact-item i {
  width: 60px;
  height: 60px;
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.15);
}
.contact .contact-info .contact-item:hover i {
  background: #3498db;
  color: white;
  transform: scale(1.1);
}
.contact .contact-info .contact-item div {
  flex: 1;
}
.contact .contact-info .contact-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a2e;
}
.contact .contact-info .contact-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 5px;
}
.contact .contact-info .contact-item p:last-child {
  margin-bottom: 0;
}
.contact .contact-info .social-links {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
}
.contact .contact-info .social-links a {
  width: 45px;
  height: 45px;
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  transition: all 0.3s;
  font-size: 18px;
}
.contact .contact-info .social-links a:hover {
  background: #3498db;
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.2);
}
.contact .contact-form {
  padding: 35px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}
.contact .contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: #1a1a2e;
}
.contact .contact-form h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #3498db;
  border-radius: 10px;
}
.contact .contact-form .form-group {
  margin-bottom: 20px;
}
.contact .contact-form .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #555;
  font-size: 15px;
}
.contact .contact-form .form-group .form-control {
  height: auto;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  background: #f9f9f9;
  transition: all 0.3s;
}
.contact .contact-form .form-group .form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
  background: white;
}
.contact .contact-form .form-group .form-control::-moz-placeholder {
  color: #aaa;
}
.contact .contact-form .form-group .form-control::placeholder {
  color: #aaa;
}
.contact .contact-form .form-group textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.contact .contact-form .btn-submit {
  display: inline-block;
  padding: 12px 30px;
  background: #3498db;
  background: linear-gradient(45deg, #3498db, #217dbb);
  color: white;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact .contact-form .btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #217dbb, #3498db);
  transition: all 0.4s;
  z-index: -1;
}
.contact .contact-form .btn-submit:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}
.contact .contact-form .btn-submit:hover::before {
  left: 0;
}
.contact .contact-form .btn-submit:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}
.contact .map {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact .map iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact .map::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer .footer-heading {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}
.footer .footer-heading:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #3498db;
}
.footer p {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}
.footer .payment-methods {
  margin-bottom: 20px;
}
.footer .payment-methods i {
  font-size: 24px;
  margin-right: 10px;
  color: white;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
}
.footer .footer-links li {
  margin-bottom: 12px;
}
.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer .footer-links li a i {
  margin-right: 10px;
  font-size: 12px;
  color: #3498db;
}
.footer .footer-links li a:hover {
  color: white;
  transform: translateX(5px);
}
.footer .app-download {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.footer .app-download .app-btn {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}
.footer .app-download .app-btn i {
  font-size: 22px;
  margin-right: 10px;
}
.footer .app-download .app-btn span {
  font-size: 14px;
  font-weight: 500;
}
.footer .app-download .app-btn:hover {
  background: #3498db;
  color: white;
}
.footer .footer-social {
  margin-top: 20px;
}
.footer .footer-social h4 {
  font-size: 16px;
  color: white;
  margin-bottom: 15px;
}
.footer .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease;
}
.footer .footer-social a:hover {
  background: #3498db;
  color: white;
  transform: translateY(-3px);
}
.footer .footer-bottom {
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-bottom p {
  margin-bottom: 0;
  font-size: 14px;
}
.footer .footer-bottom .back-to-top {
  background: #3498db;
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.footer .footer-bottom .back-to-top i {
  margin-right: 5px;
}
.footer .footer-bottom .back-to-top:hover {
  background: #217dbb;
  transform: translateY(-3px);
}
.footer .footer-logo {
  margin-bottom: 25px;
}
.footer .footer-logo a {
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
}
.footer .footer-logo a span {
  color: #3498db;
}
.footer .footer-desc {
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}
.footer .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  color: white;
  font-size: 16px;
}
.footer .social-links a:hover {
  background: #3498db;
  transform: translateY(-3px);
}
.footer .footer-heading {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
}
.footer .footer-heading:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background: #3498db;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
}
.footer .footer-links li {
  margin-bottom: 12px;
}
.footer .footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  display: block;
  transition: all 0.3s ease;
}
.footer .footer-links li a i {
  margin-right: 8px;
  font-size: 12px;
  color: #3498db;
}
.footer .footer-links li a:hover {
  color: white;
  transform: translateX(5px);
}
.footer .contact-list {
  list-style: none;
  padding: 0;
}
.footer .contact-list li {
  display: flex;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.footer .contact-list li i {
  margin-right: 12px;
  color: #3498db;
  font-size: 16px;
}
.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  margin-top: 60px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.footer .copyright a {
  color: #3498db;
}
.footer .copyright a:hover {
  text-decoration: underline;
}

.flying-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.flying-elements .flying-element {
  position: absolute;
  color: rgba(52, 152, 219, 0.2);
}
.flying-elements .flying-element.plane {
  font-size: 40px;
  top: 15%;
  left: -100px;
}
.flying-elements .flying-element.cloud-1 {
  font-size: 60px;
  top: 10%;
  left: -100px;
  color: rgba(44, 62, 80, 0.1);
}
.flying-elements .flying-element.cloud-2 {
  font-size: 40px;
  top: 25%;
  left: -100px;
  color: rgba(44, 62, 80, 0.15);
}
.flying-elements .flying-element.passport {
  font-size: 30px;
  top: 40%;
  left: -50px;
}

.chat-support {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}
.chat-support .chat-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #3498db;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}
.chat-support .chat-btn:hover {
  transform: scale(1.1);
}
.chat-support .chat-btn.pulse {
  animation: pulse 2s infinite;
}
.chat-support .chat-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
  overflow: hidden;
}
.chat-support .chat-popup.active {
  transform: scale(1);
}
.chat-support .chat-popup .chat-header {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-support .chat-popup .chat-header h4 {
  margin: 0;
  font-size: 16px;
}
.chat-support .chat-popup .chat-header .close-chat {
  background: transparent;
  border: none;
  color: white;
  font-size: 16px;
  cursor: pointer;
}
.chat-support .chat-popup .chat-body {
  height: 250px;
  padding: 15px;
  overflow-y: auto;
}
.chat-support .chat-popup .chat-body .message {
  margin-bottom: 15px;
}
.chat-support .chat-popup .chat-body .message.support {
  display: flex;
  flex-direction: column;
}
.chat-support .chat-popup .chat-body .message.support p {
  background: rgba(52, 152, 219, 0.1);
  padding: 10px 15px;
  border-radius: 10px;
  border-top-left-radius: 0;
  max-width: 80%;
  margin-bottom: 5px;
}
.chat-support .chat-popup .chat-body .message.support .time {
  font-size: 12px;
  color: #999;
  align-self: flex-start;
}
.chat-support .chat-popup .chat-body .message.user {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.chat-support .chat-popup .chat-body .message.user p {
  background: #3498db;
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  border-top-right-radius: 0;
  max-width: 80%;
  margin-bottom: 5px;
}
.chat-support .chat-popup .chat-body .message.user .time {
  font-size: 12px;
  color: #999;
}
.chat-support .chat-popup .chat-input {
  display: flex;
  border-top: 1px solid #eee;
  padding: 10px;
}
.chat-support .chat-popup .chat-input input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 8px 15px;
  font-size: 14px;
}
.chat-support .chat-popup .chat-input input:focus {
  outline: none;
  border-color: #3498db;
}
.chat-support .chat-popup .chat-input button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #3498db;
  color: white;
  border: none;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.chat-support .chat-popup .chat-input button:hover {
  background: #217dbb;
}

.currency-converter {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
}
.currency-converter .currency-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2c3e50;
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(44, 62, 80, 0.3);
  transition: all 0.3s ease;
}
.currency-converter .currency-toggle:hover {
  transform: scale(1.1);
}
.currency-converter .currency-popup {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 280px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0);
  transform-origin: bottom left;
  transition: transform 0.3s ease;
  overflow: hidden;
  padding: 20px;
}
.currency-converter .currency-popup.active {
  transform: scale(1);
}
.currency-converter .currency-popup h4 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.currency-converter .currency-popup .converter-form .conversion-status {
  font-size: 12px;
  margin-top: 5px;
  text-align: center;
}
.currency-converter .currency-popup .converter-form .rate-display {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: #444;
  font-weight: 500;
}
.currency-converter .currency-popup .converter-form .refresh-rates {
  margin-top: 15px;
  width: 100%;
  padding: 8px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.currency-converter .currency-popup .converter-form .refresh-rates:hover {
  background: #e9ecef;
}
.currency-converter .currency-popup .converter-form .refresh-rates i {
  font-size: 12px;
}
.currency-converter .currency-popup .converter-form .form-group {
  margin-bottom: 15px;
}
.currency-converter .currency-popup .converter-form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
}
.currency-converter .currency-popup .converter-form .form-group .form-select,
.currency-converter .currency-popup .converter-form .form-group .form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  margin-bottom: 10px;
}
.currency-converter
  .currency-popup
  .converter-form
  .form-group
  .form-select:focus,
.currency-converter
  .currency-popup
  .converter-form
  .form-group
  .form-control:focus {
  outline: none;
  border-color: #2c3e50;
}

.currency-converter .currency-popup .converter-status {
  margin-top: 15px;
  font-size: 13px;
  color: #666;
  text-align: center;
}
.currency-converter .currency-popup .converter-status .rate-display {
  font-weight: 500;
  margin-bottom: 5px;
}
.currency-converter .currency-popup .converter-status .timestamp {
  font-size: 11px;
  opacity: 0.8;
}
.currency-converter .currency-popup .refresh-rates {
  margin-top: 15px;
  width: 100%;
  padding: 8px 12px;
  background: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 14px;
}
.currency-converter .currency-popup .refresh-rates i {
  margin-right: 5px;
}
.currency-converter .currency-popup .refresh-rates:hover {
  background-color: #e9ecef;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(52, 152, 219, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
  }
}
@media (max-width: 991px) {
  .hero .content h1 {
    font-size: 42px;
  }
  .hero .floating-cards {
    display: none;
  }
  .booking .booking-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
  .footer .col-md-6 {
    margin-bottom: 30px;
  }
  .contact .contact-info {
    margin-bottom: 40px;
  }
  .destinations .featured-destinations .destination-featured {
    height: 350px;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }
  .hero .content h1 {
    font-size: 32px;
  }
  .hero .content p {
    font-size: 16px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .booking .booking-content .stats-row {
    justify-content: center;
  }
  .footer {
    padding-top: 50px;
  }
  .chat-support .chat-popup {
    width: 300px;
  }
  .currency-converter {
    bottom: 100px;
  }
  .destinations .featured-destinations .destination-featured {
    height: 300px;
  }
  .destinations
    .featured-destinations
    .destination-featured
    .destination-img
    .overlay
    .overlay-content
    h3 {
    font-size: 24px;
  }
  .destinations .destination-card.futuristic .destination-content {
    padding: 15px;
  }
  .destinations
    .destination-card.futuristic
    .destination-content
    .destination-header
    h3 {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .hero .content h1 {
    font-size: 28px;
  }
  .hero-btns .btn {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
  }
  .booking .booking-form {
    padding: 20px;
  }
  .chat-support .chat-popup {
    width: 280px;
    right: -30px;
  }
  .currency-converter .currency-popup {
    width: 250px;
  }
  .contact .contact-info .contact-item {
    flex-direction: column;
  }
  .contact .contact-info .contact-item i {
    margin-bottom: 15px;
    margin-right: 0;
  }
}
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeIn {
  animation-name: fadeIn;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

.animate__delay-1s {
  animation-delay: 0.3s;
}

.animate__delay-2s {
  animation-delay: 0.6s;
}

.animate__delay-3s {
  animation-delay: 0.9s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(30px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.btn-explore {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(45deg, #5e60ce, #64dfdf);
  background-size: 200% auto;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 10px rgba(94, 96, 206, 0.2);
  margin-top: 10px;
}
.btn-explore span {
  z-index: 1;
  transition: all 0.3s ease;
  color: white;
}
.btn-explore i {
  transition: transform 0.3s ease, opacity 0.3s;
  margin-left: 5px;
  opacity: 0.8;
  z-index: 1;
}
.btn-explore::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #64dfdf, #5e60ce);
  transition: all 0.5s ease;
  z-index: 0;
}
.btn-explore:hover {
  color: white;
  box-shadow: 0 6px 20px rgba(94, 96, 206, 0.4);
  transform: translateY(-3px);
}
.btn-explore:hover i {
  transform: translateX(5px);
  opacity: 1;
}
.btn-explore:hover::before {
  left: 0;
}
.btn-explore:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(94, 96, 206, 0.3);
}

.btn-outline.btn-glow {
  display: inline-block;
  padding: 12px 25px;
  border: 2px solid white;
  color: white;
  background: transparent;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-outline.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: white;
  transition: all 0.4s ease;
  z-index: -1;
}
.btn-outline.btn-glow:hover {
  color: #333;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
.btn-outline.btn-glow:hover::before {
  left: 0;
}

.destination-card .destination-content .destination-header {
  margin-bottom: 12px;
}
.destination-card .destination-content p {
  margin-bottom: 15px;
  min-height: 42px;
}
.destination-card .destination-content .destination-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}
.destination-card .destination-content .destination-features span {
  font-size: 12px;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 4px 10px;
  color: #555;
  display: inline-flex;
  align-items: center;
}
.destination-card .destination-content .destination-features span i {
  color: #5e60ce;
  margin-right: 4px;
}
.destination-card:hover .btn-explore {
  background-position: right center;
}

.btn-primary.btn-lg {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(45deg, #5e60ce, #64dfdf);
  border: none;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: 0 5px 15px rgba(94, 96, 206, 0.3);
}
.btn-primary.btn-lg.btn-glow {
  position: relative;
  overflow: hidden;
}
.btn-primary.btn-lg.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
  transition: all 0.6s;
  opacity: 0;
}
.btn-primary.btn-lg.btn-glow:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(94, 96, 206, 0.5);
}
.btn-primary.btn-lg.btn-glow:hover::after {
  opacity: 1;
  left: 100%;
}
.btn-primary.btn-lg.btn-glow i {
  margin-left: 8px;
  transition: transform 0.3s;
}
.btn-primary.btn-lg.btn-glow:hover i {
  transform: translateX(3px) rotate(10deg);
}

.mobile-nav {
  display: none;
}

@media (max-width: 991px) {
  #header .navbar {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }
  .mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .mobile-header-inner .logo a {
    font-weight: 700;
    font-size: 24px;
    color: white;
  }
  .mobile-header-inner .logo a .logo-text {
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mobile-header-inner .logo a .logo-text span {
    background: linear-gradient(135deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .mobile-header-inner .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  .mobile-header-inner .mobile-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 4px;
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }
  .mobile-header-inner .mobile-nav-toggle:hover span:nth-child(1) {
    transform: translateY(-2px);
  }
  .mobile-header-inner .mobile-nav-toggle:hover span:nth-child(3) {
    transform: translateY(2px);
  }
  .mobile-header-inner .mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-header-inner .mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-header-inner .mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }
  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-overlay .mobile-menu-container {
    position: absolute;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #1a1a2e;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }
  .mobile-menu-overlay .mobile-menu-container.active {
    right: 0;
  }
  .mobile-menu-overlay.active .mobile-menu-container {
    right: 0;
  }
  .mobile-menu-overlay .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-overlay .mobile-menu-header .logo a {
    font-size: 22px;
    font-weight: 700;
  }
  .mobile-menu-overlay .mobile-menu-header .mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
  }
  .mobile-menu-overlay .mobile-menu-header .mobile-menu-close:hover {
    background: #3498db;
    transform: rotate(90deg);
  }
  .mobile-menu-overlay .mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu {
    padding: 30px 20px;
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu ul li {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    transition-delay: 0.1s;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-nav-menu
    ul
    li:nth-child(2) {
    transition-delay: 0.15s;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-nav-menu
    ul
    li:nth-child(3) {
    transition-delay: 0.2s;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-nav-menu
    ul
    li:nth-child(4) {
    transition-delay: 0.25s;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-nav-menu
    ul
    li:nth-child(5) {
    transition-delay: 0.3s;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-nav-menu
    ul
    li:nth-child(6) {
    transition-delay: 0.35s;
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu ul li a {
    display: flex;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 10px 0;
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu ul li a span {
    color: #3498db;
    font-size: 12px;
    margin-right: 15px;
    opacity: 0.7;
    min-width: 25px;
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu ul li a:hover,
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu ul li a.active {
    color: #3498db;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-nav-menu
    ul
    li
    a:hover::after,
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-nav-menu
    ul
    li
    a.active::after {
    width: calc(100% - 40px);
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-cta {
    margin-bottom: 20px;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-cta
    .btn-book-now {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #5e60ce, #64dfdf);
    color: white;
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: 600;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-cta
    .btn-book-now
    .btn-text {
    z-index: 1;
    margin-right: 10px;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-cta
    .btn-book-now
    .btn-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 1;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-cta
    .btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3498db, #804399);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-cta
    .btn-book-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-cta
    .btn-book-now:hover::before {
    opacity: 1;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-cta
    .btn-book-now:hover
    .btn-icon {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.3);
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-social {
    display: flex;
    justify-content: center;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-social
    a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    margin: 0 8px;
    transition: all 0.3s;
    font-size: 14px;
  }
  .mobile-menu-overlay
    .mobile-menu-content
    .mobile-menu-footer
    .mobile-menu-social
    a:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  }
  .mobile-menu-overlay.active .mobile-nav-menu ul li {
    opacity: 1;
    transform: translateY(0);
  }
  body.menu-open {
    overflow: hidden;
  }
  body {
    padding-top: 70px;
  }
}
@media (max-width: 575px) {
  .mobile-header-inner .logo a {
    font-size: 20px;
  }
  .mobile-menu-overlay .mobile-menu-container {
    width: 90%;
  }
  .mobile-menu-overlay .mobile-menu-content .mobile-nav-menu ul li a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .hero .content h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 25px;
  }
  .hero .content h1 span {
    font-weight: 800;
    background: linear-gradient(135deg, #3498db, #75b9e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }
  .hero .content p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 35px;
  }
  .hero .content .hero-btns .btn {
    font-weight: 700;
    padding: 13px 28px;
    font-size: 15px;
  }
  .hero .content .hero-btns .btn:first-child {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .hero .content {
    padding: 0 15px;
  }
  .hero .content h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .hero .content p {
    margin-bottom: 30px;
  }
  .hero .content .hero-btns {
    display: flex;
    flex-direction: column;
  }
  .hero .content .hero-btns .btn {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 12px;
    padding: 14px 20px;
  }
}
@media (max-width: 320px) {
  .hero .content h1 {
    font-size: 28px;
  }
} /*# sourceMappingURL=style.css.map */

/* Add this to your CSS */
.whatsapp-direct-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  margin: 15px 0;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-direct-btn i {
  font-size: 18px;
  margin-right: 8px;
}

.whatsapp-direct-btn:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
}

.btn-whatsapp i {
  margin-right: 8px;
  font-size: 16px;
}

.button-group {
  display: flex;
  margin-top: 15px;
}

/* For mobile */
@media (max-width: 576px) {
  .button-group {
    flex-direction: column;
  }

  .btn-whatsapp {
    margin-left: 0;
    margin-top: 10px;
  }
}
